home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / programming / mui / mcc_popph / mcc_popph.readme < prev    next >
Text File  |  1999-11-30  |  6KB  |  160 lines

  1. Short:    v15.1 - Popup placeholder class (MUI)
  2. Author:   Marcin Orlowski <carlos@amiga.com.pl>
  3. Uploader: Marcin Orlowski <carlos@amiga.com.pl>
  4. Type:     dev/mui
  5. Version:  15.1
  6. Replaces: dev/mui/MCC_Popph.*
  7. WWW:      http://amiga.com.pl/mcc/
  8. Source:   dev/mui/MCC_Popph_Src.lha
  9.  
  10.  
  11.   Short
  12.   -----------------------------------
  13.  
  14.   Popplaceholder class is a simple but useful class ;) Most applications
  15.   are fully configurable nowadays, offering wide range of various
  16.   parameters for further user modifications.  Not only functions options
  17.   or forms of behaviour are configurable but often most of program
  18.   strings can now be changed by the user.  The latter applies to
  19.   internet (communication) related programs mostly, (e.g.  AmIRC,
  20.   AmTelnet, YAM and so on...) which needs to send various string to
  21.   other different people.  So they allow you to define e.g.  own welcome
  22.   phrase or kick reason sentence.  Because e.g.  your welcome phrase for
  23.   e.g.  John and phrase for Mary will differ only with the name, most of
  24.   these strings uses so called placeholders, to describe varable,
  25.   dynamically modified string part (e.g.  mentioned receipient name).
  26.   For example "On %d, %u wrote:".  The "%d" and "%u" ares just the
  27.   placeholders, program will replace on use by for instance mail date
  28.   and the sender's name (of course placeholder can look like "@name" or
  29.   "%{date}" or "my lovely grandma", but the idea behind remains).
  30.  
  31.   Unfortunately, most programs forces user to know what placeholder can
  32.   be user where and which means what.  That's kinda user unfriendly
  33.   (especially for beginners, or just-users).  Instead of forcing them to
  34.   type placeholders by hand (in proper syntax!) it would be nicer to let
  35.   them pick up what they want from the list of available items.  That
  36.   both eliminates placeholder syntax problems (unless user 'fix' it
  37.   later by hand of course) as well as disallows to use unsupported
  38.   placeholder (the above exception applies of course).  And here comes
  39.   Popplaceholder class.  It features the ordinary string gadget user can
  40.   type own text in, but it also gives the popup listview, which holds
  41.   all available placeholders.  User can easily select one from the list
  42.   either by double click or by neat Drag&Drop.  See the example demo
  43.   program for better picture of the class' features.
  44.  
  45.  
  46.   Popplaceholder is freeware software, but it's copyrighted
  47.   © 1999 by Marcin Orlowski <carlos@amiga.com.pl>
  48.  
  49.   PS: Yes, I know my english sucks ;)
  50.  
  51.  
  52.   Software using this class:
  53.   -----------------------------------
  54.  
  55.   - AmIRC 3
  56.   - AmTelnet 2
  57.   - OpenURL 3
  58.   - Voyager 3
  59.  
  60.   Let me know about your!
  61.  
  62.  
  63.   History
  64.   -----------------------------------
  65.  
  66.   14.0 (Mon Jul 12 10:15:34 1999)
  67.        - initial version
  68.  
  69.   14.1 (Mon Jul 12 13:09:21 1999)
  70.        - Added MUIA_Poplaceholder_Copy attribute
  71.        - now forwards all list object methods
  72.          to internal pop up list, increasing
  73.          flexibility
  74.  
  75.   14.2 (Tue Jul 13 19:35:58 1999)
  76.        - shortened all these "MUIx_Popplaceholder_#?"
  77.          to "MUIx_Popph_#?" for easier programming ;)
  78.        - added Drag&Drop feature
  79.  
  80.   14.3 (Wed Jul 14 14:05:34 1999)
  81.        - first public release
  82.        - wrote autodocs
  83.        - added support for existing string gadget
  84.          replacements (the fallback scheme looks like:
  85.          Textinput -> Betterstring -> original String)
  86.        - MUIA_Popph_StringMaxLen is gettable now
  87.  
  88.   14.4 (oops, I forgot the datestamp)
  89.        - added support for popup menu when Textinput
  90.          subclass is used
  91.        - added MUIA_Popph_ReplaceMode attribute
  92.  
  93.   14.5 (Sun Jul 25 19:58:25 1999)
  94.        - Popplaceholder is now 2-in-1 custom class
  95.          (poplaceholderstr.mcc is now useless and
  96.          should be wiped out of your disks)
  97.        - added some internal checks to avoid possible
  98.          problems with tag/descriptions being longer
  99.          than predefined max length
  100.        - Popph object is no longer higher than highest
  101.          object it uses
  102.        - MUIA_Popph_StringType added
  103.        - all TI/BS/String attrubutes are now forwarded
  104.          to internal string object on OM_SET/OM_GET.
  105.          Just talk to Popph as to string gadget
  106.        - added PopAsl alike work mode
  107.  
  108.   14.6 (Tue Jul 27 16:09:44 1999)
  109.        - MUIA_Version, MUIA_Revision are now supported
  110.        - fixed bad enforcer hit "implemented" in 14.5
  111.        - MUIA_Popph_Avoid added
  112.        - added MUIA_Popph_StringObject, MUIA_Popph_ListObject
  113.  
  114.   14.7 (Tue Aug 31 10:28:35 1999)
  115.        - all list methods and attributes are now forwarded
  116.          to internal list object. Handle with care.
  117.        - public release
  118.  
  119.   15.0 (Sat Nov 06 17:32:28 1999)
  120.        - now handles the entry even it's incorrect (e.g.
  121.          plain string, w/o separators etc) for easier
  122.          debugging (and wider usage ;-)
  123.        - added MUIA_Popph_PopCycleChain attribute on
  124.          mouse lovers' request (Grzegorz Kraszewski)
  125.        - PopPH now correctly handles ASLFR_DrawersOnly, TRUE
  126.          case in ASL mode (Troels Walsted Hansen)
  127.        - added MUIA_Popph_Title for easy popup list titles
  128.        - added single column mode
  129.  
  130.   15.1 (Tue Nov 23 23:25:45 1999)
  131.        - fixed MUIA_Popph_Avoid not working correctly
  132.          (uh, I forgot his name ;-( Will add later, sorry)
  133.        - pop buttons removed from the cycle chain
  134.          (MUIA_Popph_PopCycleChain is now FALSE by default)
  135.          as MUI offers special hotkey (CTRL-P by default)
  136.          for that, and won't break the AdvanceOnCR adventages
  137.          (Grzegorz Kraszewski)
  138.        - full source code released. Read source.readme for
  139.          closer details
  140.  
  141.  
  142.  
  143.           ___  ___  ___    ________    ___  ___  ___    ___  ___
  144.          /   \/   \/   \  /        \  /   \/   \/   \  /   \/   \
  145.         /    /    /    / /         / /    /    /    / /    /    /
  146.        /    /    /    / /    _____/ /    /    /    / /    /    /
  147.       /    /    /    / /        \  /    /    /    / /         /
  148.      /    /    /    / /         / /    /    /    / /         /
  149.     /    /    /    / /    _____/ /    /    /    / /    /    /
  150.    /    /    /    / /    /      /    /    /    / /    /    /
  151.    \___/\___/\___/ /    /       \___/\___/\___/  \___/\___/
  152.                   /    /
  153.                   \___/                    W.F.M.H. on-line
  154.                                          http://wfmh.org.pl
  155.  
  156.                Amiga software: http://amiga.com.pl/
  157.  
  158.  
  159.    $Id: MCC_Popph.readme,v 1.3 1999/11/16 20:58:11 carlos Exp $
  160.